Component org.nuxeo.ecm.core.storage.bulk
In bundle org.nuxeo.ecm.core.storage
Requirements
Resolution Order
840
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.storage.bulk" version="1.0.0">
<require>org.nuxeo.ecm.core.bulk.config</require>
<extension target="org.nuxeo.ecm.core.bulk" point="actions">
<action name="extractBinaryFulltext" inputStream="bulk/extractBinaryFulltext" bucketSize="50" batchSize="10" httpEnabled="false" />
</extension>
<extension target="org.nuxeo.runtime.stream.service" point="streamProcessor">
<streamProcessor name="extractBinaryFulltext"
class="org.nuxeo.ecm.core.storage.action.ExtractBinaryFulltextAction"
defaultConcurrency="${nuxeo.bulk.action.extractBinaryFulltext.defaultConcurrency:=2}"
defaultPartitions="${nuxeo.bulk.action.extractBinaryFulltext.defaultPartitions:=4}">
<policy name="default" maxRetries="3" delay="1s" continueOnFailure="true" />
</streamProcessor>
</extension>
</component>